home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form ffuture
- BackColor = &H00C0C0C0&
- Caption = "New Tools"
- ClientHeight = 1530
- ClientLeft = 1605
- ClientTop = 2175
- ClientWidth = 5925
- Height = 2025
- Left = 1500
- LinkTopic = "Form1"
- ScaleHeight = 1530
- ScaleWidth = 5925
- Top = 1785
- Width = 6135
- Begin vsInForm VSInForm1
- BarColor = &H00800000&
- BarColorInactive= &H00800000&
- BarHeight = 25
- BarStyle = 2 'NoBorder
- ButtonsRight = 3 '3
- CapAlign = 1 'Left Center
- CapColor = &H00FFFFFF&
- CapColorInactive= &H00FFFFFF&
- Caption = " New Tools"
- ConvInfo = FFUTURE.FRX:0000
- FontBold = -1 'True
- FontItalic = 0 'False
- FontName = "MS Sans Serif"
- FontSize = 9.75
- FontStrikethru = 0 'False
- FontUnderline = 0 'False
- FrameButtons = 0 'False
- FrameColor = &H00C0C0C0&
- FrameColorInactive= &H00C0C0C0&
- FrameCorners = 0 'False
- FrameStyle = 3 'Raised Form
- FrameWidth = 8
- Left = 5400
- MinHeight = 2300
- MinWidth = 5600
- PictLeft0 = FFUTURE.FRX:000B
- PictRight0 = FFUTURE.FRX:015D
- PictRight1 = FFUTURE.FRX:022F
- PictRight2 = FFUTURE.FRX:0309
- Top = 960
- End
- Begin Label Label1
- BackColor = &H0080FFFF&
- BackStyle = 0 'Transparent
- Caption = "Create forms that look the same way in 16 and 32 bits by customizing the form icons with VSINFORM"
- FontBold = -1 'True
- FontItalic = 0 'False
- FontName = "MS Sans Serif"
- FontSize = 13.5
- FontStrikethru = 0 'False
- FontUnderline = 0 'False
- Height = 1170
- Left = 210
- TabIndex = 0
- Top = 105
- Width = 5055
- End
- Option Explicit
- Sub Form_Load ()
- VSInform1.CustomFrame = True
- End Sub
- Sub VSInForm1_ClickRButton (Button As Integer)
- Select Case Button
- Case 0: Unload Me
- Case 1: vsInform1_DblClickCaption
- Case 2: Me.WindowState = 1 ' minimize
- End Select
- End Sub
- Sub vsInform1_DblClickCaption ()
- ' maximize if normal
- If WindowState = 0 Then
- WindowState = 2
- ' restore if maximized
- ElseIf WindowState = 2 Then
- WindowState = 0
- End If
- End Sub
-